Claude Code Visual: Practical Notes on Hooks, Subagents, MCP, and CLAUDE.md

Claude Code Visual User Experience Notes
A developer on r/ClaudeAI shared several months of practical experience with Claude Code Visual, highlighting specific features and implementation challenges.
Key Details from the Source
The developer documented the following observations:
- MCP Hooks: The hook syntax was difficult to remember, requiring documentation. Specifically, the distinction between PreToolUse and PostToolUse hooks wasn't obvious from the documentation, leading to setup errors that cost approximately half a day to resolve.
- CLAUDE.md: This file proved more useful than expected for maintaining project context. Once implemented, it eliminated the need to repeatedly explain folder structure and tech stack in each session. The developer noted they should have set it up earlier.
- Subagents: The developer feels they're underutilizing subagent functionality. While they use a Research → Plan → Execute → Review pattern, they haven't fully determined when to delegate tasks to subagents versus having the main agent handle them directly.
- /loop Command: This command allows scheduling recurring tasks up to 3 days in advance. The developer discovered it accidentally and noted it might not be obvious to all users.
The developer created a visual reference (linked in the source) and invited corrections or updates to keep the information current.
📖 Read the full source: r/ClaudeAI
👀 See Also

How to Prevent CLAUDE.md Rot: Treat Rules Like Code
After 18 months of real-world use, one developer shares four disciplines to keep CLAUDE.md under 100 lines: use it as an index, separate rules from sources, audit on every PR, and delete more than you add.

Claude Prompt for Visualizing Thinking Structure: Intent, Reality, Gap
A Reddit user shares a 100-word prompt for Claude that asks the AI to notice and reflect back the structural patterns in conversation—categorized as Intent (what you WANT), Reality (what IS), and Gap (what's UNRESOLVED)—rather than the content itself.

MTP Acceptance Rate: 50% Threshold Determines Speculative Decoding Benefit
MTP (Multi-Token Prediction) via speculative decoding on Gemma-4 26B shows benefit only when draft token acceptance rate exceeds 50% — based on mlx-vlm benchmarks on M4 Max Studio.

Fix Ollama Cloud Model maxTokens: Cap is 16K, Not Config Value
Ollama cloud caps output at 16,384 tokens regardless of maxTokens config. Set to 14,000 to avoid EOF errors. Restructure long outputs or route to direct provider.