monk: A skill that silences agent narration to save context and tokens

A Reddit user created monk, a skill that makes AI agents work silently — stripping narration, preambles, postambles, and progress commentary from responses, keeping only the results. The effect is an estimated 54% reduction in output tokens per turn (47% coding, 65% chat, 54% research), and compounding context savings that grow with session length.
How it works
monk suppresses all "I'm now doing X..." narration, task-list widgets, and status pings. The agent only outputs standard results at the end of each step. The skill is available on GitHub: github.com/marpxxx/skillz/tree/main/monk.
Benchmark results
Tests used 30 tasks (10 per category: coding, chat, research) with verbosity approximated via OpenAI's cl100k_base tokenizer. Key numbers:
- Single-turn output savings: Coding 47%, Chat 65%, Research 54%, Overall 54%.
- Context capacity gain (compounding): At ~20 rounds (typical session), +13% (coding), +14% (chat), +20% (research). At 100 rounds, +29% (coding), +36% (chat), +39% (research).
- API cost (Claude Sonnet 4.6, prompt caching): ~19% cost saving on a 10-round session.
The test did not count tokens suppressed in tool-use widgets or status pings, so real-world savings may be higher.
Caveats
The verbose samples are AI-generated approximations. A well-tuned base agent may already be terser; a verbose one with narration-heavy skills may produce more. Tokenizer is OpenAI's cl100k_base, not Anthropic's. The 8k system-prompt assumption is conservative (many setups have 15-30k). Results are directional estimates, not production benchmarks.
For developers who rarely read real-time agent output, this skill can reduce noise and stretch the context window significantly.
📖 Read the full source: r/ClaudeAI
👀 See Also

CC-Wiki: Turn Claude Code Sessions into a Shareable Quartz Knowledge Base
CC-Wiki converts your ~/.claude session history into a Quartz-based knowledge base. One command installs it; running /cc-wiki inside a Claude Code session packages the conversation.

LLM Architecture Gallery: Visual Reference for Model Designs
Sebastian Raschka's LLM Architecture Gallery collects architecture figures and fact sheets from The Big LLM Architecture Comparison and A Dream of Spring for Open-Weight LLMs, with detailed specs for models like Llama 3 8B, DeepSeek V3, and Gemma 3 27B.

Snip tool enables visual communication with AI coding agents
Snip is a free tool that lets developers screenshot, annotate, and draw to show AI agents what they mean visually, while agents can generate diagrams or load images directly through CLI or MCP. Currently runs on Apple Silicon Macs with Mermaid diagram support and HTML support in progress.

SkyClaw: Rust AI Agent Runtime for Cloud VPS with Telegram Control
SkyClaw is a 6.9 MB Rust-based AI agent runtime designed for cloud VPS deployment with Telegram as the sole interface. It executes shell commands, browses the web via headless Chrome, reads/writes files, and fetches URLs with multi-round tool chaining.