Cowork Context Management Kit Solves Claude's File Overload Problem

Problem: Claude Reading Every File
A consulting firm developer using Cowork with Claude AI encountered performance issues when working with a project folder containing 462 files. Claude would stall, contradict earlier work, pull from outdated documents, and reference superseded content. The root cause: Claude was reading every file in the folder at the start of each session, filling half the context window with irrelevant information before processing the actual question.
Solution: Three-Part Context Management Kit
The developer borrowed from enterprise storage concepts (near-line tiering) and created:
- Global instructions to paste into Cowork settings. These tell Claude to first look for a manifest file, read canonical documents, and only load other files when the task specifically requires them.
- A manifest template (_MANIFEST.md) to drop into folders. This simple markdown file tags files as:
- Tier 1: Source of truth documents
- Tier 2: Load on demand
- Tier 3: Ignore unless specifically asked
- A Cowork skill that maintains consistency across sessions
Implementation and Results
Setup takes about 10 minutes. The developer reports immediate improvement in performance after implementation. The kit is MIT licensed and available on GitHub at https://github.com/hughtopian-gif/cowork-context-kit.
This approach addresses a common issue where AI coding assistants waste context window space on irrelevant files, particularly in large projects with accumulated documentation over time.
📖 Read the full source: r/ClaudeAI
👀 See Also

80-line Python script uses Claude to auto-generate internal link suggestions, cuts linking time from 2 hours to 8 minutes
A Reddit user built an 80-line Python script that feeds an article draft and sitemap to Claude, returning relevant internal link targets with suggested anchor text — reducing manual linking time from 2 hours to 8 minutes per article.

Local Behavioral Monitoring System with MCP Pipeline and Claude Code
A developer built a local behavioral monitoring system called BRAIN that tracks app switches, file operations, and dev sessions, piping data through a custom MCP server to Claude Code. The system runs 100% locally with zero cloud dependency.

Send OpenClaw Agents as Meeting Participants with Voice, Chat, and Screen Share
A new skill lets OpenClaw agents join Google Meet, Teams, and Zoom as full participants with voice (STT/TTS), chat, video avatar, and screen sharing.

motif MCP gives Claude Code video-watching ability for UI bug reproduction
motif is an MCP server that lets Claude Code watch screen recordings of UI bugs, using Gemini 2.5 Flash frame-by-frame analysis to return visual descriptions, root causes, and diffs. Setup requires a Gemini API key and two lines in mcp.json.