← Reddit

I built a markdown file system that helps stop Claude from going off the rails on long (huge) projects Open Source, no apps, no dependencies

Reddit · mrhobbeys · April 23, 2026
HyperWorker is an open-source system of markdown files and folder structures designed to keep Claude AI focused and on-track during long or multipart projects without requiring apps or dependencies. The system uses markdown "harnesses" containing checkpoints and structured planning instructions to maintain context and prevent project derailment, and has been tested on Windows with various projects including a comprehensive brand audit involving 39 sequential tasks. The tool allows users to audit changes through local git integration and manage multiple interconnected projects through organized folder structures.

Detailed Analysis

A Reddit user operating under the handle "mrhobbeys" has released HyperWorker, an open-source, dependency-free system of structured markdown files and folder hierarchies designed to prevent Claude from losing coherence or deviating from user intent during extended, multi-stage AI projects. Available on GitHub, the system centers on a `harness.md` file that Claude reads at the start of a session to construct a full project scaffold — including deliverables folders, checkpoint structures, and multi-project pipelines — without requiring any installed applications or third-party libraries. The creator reports eight months of iterative development, initially with GitHub Copilot and a local LLM agent, before finding that Claude's "Cowork" environment (Anthropic's project-oriented agentic interface) dramatically improved the system's reliability. In one documented use case, Claude ran overnight — processing video transcripts, analyzing social media retention data, and auditing SEO and brand messaging across an MSP/MSSP's entire online presence — emerging with a 13-step audit identifying hundreds of actionable flaws.

The core problem HyperWorker addresses is a well-documented limitation of large language models in agentic workflows: context drift, compounding errors, and loss of project state across long or multi-part tasks. By externalizing project memory and task state into auditable markdown files rather than relying on the model's in-context window alone, the system gives Claude a persistent, readable ground truth to reference throughout execution. The creator notes that earlier versions permitted long uninterrupted runs, while version 4.1.x introduces more frequent checkpoints to catch early-stage errors before they cascade — a tradeoff between autonomy and reliability that users can tune. The folder structure also enables local Git integration, allowing human oversight of every incremental change Claude makes, which is a meaningful safeguard when the model is making live edits to websites and social media platforms via browser automation.

HyperWorker sits within a broader and rapidly maturing ecosystem of markdown-based context management strategies for Claude. Anthropic's own Claude Code product natively supports `CLAUDE.md` files — persistent instruction documents loaded hierarchically at session start — as a first-party mechanism for maintaining coding standards, workflow rules, and architectural context across sessions. Community best practices around these files, documented extensively by practitioners, recommend keeping individual files under 200 lines, using modular imports and subdirectory-specific rules, and separating shareable team instructions from personal local overrides. HyperWorker extends this philosophy beyond coding into general project management, applying the same principle of externalizing persistent state to non-code domains like brand audits, content strategy, and marketing workflows — a meaningful expansion of the paradigm's applicability.

The broader significance of projects like HyperWorker lies in what they reveal about the current state of AI agentic systems: the models themselves are capable of sustained, sophisticated work, but the infrastructure for managing that work over long time horizons remains largely unsolved at the platform level, leaving a wide gap that developers and power users are filling with homebrew scaffolding. The fact that a markdown file system built by a single developer over eight months can meaningfully improve the reliability of overnight autonomous Claude sessions reflects both the power of Claude's instruction-following capabilities and the genuine absence of robust, native long-horizon task management in most AI tooling. As Anthropic continues developing products like Claude Code and Cowork, community systems like HyperWorker serve as field research — stress-testing agentic workflows at real-world scale and generating the kind of feedback, including documented bugs like the Windows path-direction error the creator flagged, that commercial development cycles often miss.

Read original article →