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

Equibles: Self-Hosted MCP Server for U.S. Financial Data – SEC Filings, 13F, Insider Trades, FRED
Equibles is an open-source MCP server that scrapes public U.S. financial data (SEC filings, 13F, insider/congressional trades, short data, FRED) and exposes it as MCP tools for any local LLM agent.

FlowBoard v5: The Project Workspace Your AI Agents Actually Run
FlowBoard v5 is a React-based project workspace for AI agents. It includes an event-sourced task store (SQLite), multi-agent support, idea-to-specs loop, and modular overview widgets.

Flash-MoE: Running 397B Parameter Qwen Model on MacBook Pro with Pure C/Metal
Flash-MoE is a pure C/Metal inference engine that runs Qwen3.5-397B-A17B, a 397 billion parameter Mixture-of-Experts model, on a MacBook Pro with 48GB RAM at 4.4+ tokens/second. The 209GB model streams from SSD through custom Metal compute shaders with no Python or frameworks.

OpenClaw Nerve WebUI adds voice control and team management dashboard
Nerve is a WebUI for OpenClaw that provides an all-in-one dashboard for monitoring and managing AI agents, with voice control via double-tap shift for Whisper and sub-agent team building capabilities.