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/minerd/cmdmanager/claude-mdgit clone --depth 1 https://github.com/minerd/CmdManagerWhat 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.01978 | $0.01978 |
| Opus 5 | $0.00989 | $0.00989 |
| Sonnet 5 | $0.00396 | $0.00396 |
| Haiku 4.5 | $0.00198 | $0.00198 |
Grade A, and why
CmdManager 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 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.
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 — 72 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 Overview
CmdManager is a WPF (.NET 8, x64-only) utility that monitors and remote-controls open cmd.exe windows on this machine. It lists cmd windows working on the E: or F: drives, shows a live colored preview of the selected console, indicates busy/idle state, sends commands to consoles without stealing focus, and keeps history/favorites of working directories. It is built around an external cc command assumed to be on PATH (the user's Claude Code launcher) — several actions open a cmd and run cc in it. The UI is localized (English default, Turkish toggle via the 🌐 button): XAML strings resolve through DynamicResource keys rebuilt by ApplyLanguage() from the UiStrings table, and code-behind strings use Loc.T(en, tr). The chosen language persists in settings.json (Language).
Build & Run
- Build:
dotnet build -c Release - Run: launch
bin\Release\net8.0-windows\win-x64\CmdManager.exe. The manifest declaresrequireAdministrator(needed forReadProcessMemory/AttachConsoleon other processes), so every launch triggers UAC. - Publish single-file to
publish/:dotnet publish -c Release -r win-x64 --self-contained false -p:PublishSingleFile=true -o publish - Regenerate the icon:
powershell -File make_icon.ps1(draws the>_glyph programmatically and writesapp.ico) - There are no tests and no linter config.
- Gotcha:
App.xamlsetsShutdownMode="OnExplicitShutdown"and nothing ever callsApplication.Shutdown(), so closing the main window leaves the process running. A surviving instance locks the exe and makes the next build fail with a file-in-use error — killCmdManagerfrom Task Manager before rebuilding.
Architecture
All logic lives in two files:
Native.cs— every Win32 P/Invoke, exposed as static methods onNative(enumerate cmd windows, read another process's working directory, read/write another process's console, global hotkey, focus/keyboard helpers).MainWindow.xaml.cs— all UI state and behavior: theCmdItem/HistoryItem/FavoriteItemmodels, the polling timers, persistence, and every event handler.InputDialog(a code-built prompt window) is at the bottom of the same file.
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 · 72 lines · 1,978 tokens per session scan A 024dca730763
CmdManager CLAUDE.md is an instructions file published in the GitHub repository minerd/CmdManager (23 stars, last pushed 2mo ago), licensed MIT. It adds 1,978 tokens to every session, about $0.0099 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
mcp-for-beginners AGENTS.md
Instructions for microsoft/mcp-for-beginners, covering agents.md, project overview, key technologies, architecture and setup commands.
nina AGENTS.md
Instructions for isbeorn/nina, covering agents.md, scope, documentation boundary, repository knowledge and code style and formatting.
bitfinex-net
Use Bitfinex.Net when generating C#/.NET code that interacts with Bitfinex, including Spot, margin, derivatives symbols, funding, REST endpoints, WebSocket subscriptions, account management, market data, or order placement. Triggers on Bitfinex integration requests in C#, .NET, dotnet, F#, or VB.NET context.
Bitfinex.Net copilot-instructions.md
Instructions for JKorf/Bitfinex.Net, covering copilot instructions for bitfinex.net, use bitfinex.net, not raw http, client setup, result handling and api structure.
console AGENTS.md
Instructions for rustfs/console, covering repository guidelines, project structure & module organization, build, test, and development commands, quality gates — must pass before every commit and engineering principles.
appointme CLAUDE.md
Instructions for bravodev-hub/appointme, covering claude.md, build and development commands, running the full stack (recommended), backend only and frontend only.