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/eviltik/docker-tui/claude-mdgit clone --depth 1 https://github.com/eviltik/docker-tuiWhat 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.03118 | $0.03118 |
| Opus 5 | $0.01559 | $0.01559 |
| Sonnet 5 | $0.00624 | $0.00624 |
| Haiku 4.5 | $0.00312 | $0.00312 |
Grade A, and why
docker-tui 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 3d 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 — 268 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
Docker TUI is a Terminal User Interface application for managing Docker containers, built with Go and Bubbletea (The Elm Architecture framework). It provides real-time container monitoring, multi-select operations, CPU usage tracking, live log streaming with colored backgrounds, regex-based filtering, and a demo mode for presentations.
Build and Development Commands
# Build for current platform
make build # Creates ./docker-tui binary
# Run without building
make run # Executes: go run ./src
# Run tests
make test # Executes: go test -v ./src/...
# Format code
make fmt # Executes: go fmt ./src/...
# Clean artifacts
make clean # Removes ./docker-tui and dist/
# Cross-platform builds
make dist-all # Builds for Linux (amd64/arm64), macOS (amd64/arm64), Windows
Architecture: Elm Architecture (Bubbletea)
The application follows Bubbletea's Elm Architecture pattern with three core components:
Model (state)
Located in src/model.go, the model struct contains all application state:
- Docker client and container list
- Selection state (
selectedmap,cursorposition) - View mode (
listView,logsView,confirmView,exitConfirmView,mcpLogsView) - Processing state for async operations
- CPU statistics tracking (current + 10-value history)
- CPUStatsCache instance (
cpuCache) for instant MCP responses (shared with MCPServer) - LogBroker instance (
logBroker) for centralized log streaming management - RateTracker instance (
rateTracker) for L/S (lines/second) monitoring - BufferConsumer instance (
bufferConsumer) for logs view circular buffering - MCPServer instance (
mcpServer) for Claude Desktop integration - Filter state (
filterMode,filterInput,filterActive,filterRegex,filterIsRegex) - Demo mode flag (
demoMode) for hiding container name prefixes - Closing flag (
closing atomic.Bool) for graceful shutdown coordination
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.
- 3d ago First seen · 268 lines · 3,118 tokens per session scan A 943879284c4d
docker-tui CLAUDE.md is an instructions file published in the GitHub repository eviltik/docker-tui (4 stars, last pushed 4mo ago), licensed MIT. It adds 3,118 tokens to every session, about $0.0156 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-31.
Other instructions, from other repositories
better-notion-mcp CLAUDE.md
Instructions for n24q02m/better-notion-mcp, covering better-notion-mcp, cau truc, lenh thuong dung, test don le and mise shortcuts.
better-notion-mcp AGENTS.md
Instructions for n24q02m/better-notion-mcp, covering agents.md - better-notion-mcp, build / lint / test commands, run a single test file, run a single test by name and mise shortcuts.
better-godot-mcp CLAUDE.md
Instructions for n24q02m/better-godot-mcp, covering claude.md - better-godot-mcp, commands, setup, lint & type check and fix.
better-godot-mcp AGENTS.md
Instructions for n24q02m/better-godot-mcp, covering agents.md - better-godot-mcp, build / lint / test commands, run a single test file, run a single test by name and mise shortcuts.
mcp-dockhand CLAUDE.md
Instructions for strausmann/mcp-dockhand, covering claude.md — mcp-dockhand server, projektübersicht, tech stack, verzeichnisstruktur and konventionen.
better-telegram-mcp AGENTS.md
Instructions for n24q02m/better-telegram-mcp, covering agents.md - better-telegram-mcp, build / lint / test commands, run a single test file, run a single test function and mise shortcuts.