Long Running Harness
Description
A Claude Code skill for maintaining continuity across multiple context windows in long-running software projects
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Long-Running Harness
A Claude Code and Codex skill for maintaining continuity across multiple context windows in long-running software projects.
Based on Anthropic's research: [Effective Harnesses for Long-Running Agents](https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents)
Problem
When AI agents work on complex projects spanning multiple sessions, each new session starts with no memory of what came before. This leads to:
- One-shotting: Attempting to build everything at once, exhausting context mid-implementation
- Premature completion: Declaring the project done when features are still incomplete
- Lost progress: Having to guess what happened in previous sessions
Solution
This skill implements a planner-led development approach:
Phase 1: Initializer
Sets up the project environment on the first run:
long_running//plan.md- Planner-owned scope and acceptance criterialong_running//feature_list.json- Comprehensive feature requirements in JSON formatlong_running//progress.txt- Session work log for tracking progresslong_running//init.sh- Development environment startup scriptlong_running//state.json- Current harness phase and selected featurelong_running//handoffs/- Worker/evaluator handoff fileslong_running//prompts/- Reusable prompt files- Git repository with initial commit
Phase 2: Planner-Led Agent Team
Every subsequent session follows this workflow:
- Orient - Read long_running//progress.txt and git log
- Plan - Choose ONE incomplete feature and update long_running//plan.md
- Implement - Delegate focused changes to a worker subagent when available
- Verify - Delegate skeptical end-to-end checks to an evaluator subagent
- Document - Commit changes, update feature_list.json, and append progress.txt
Agent
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11