Claude Coach

Experimental

A knowledge-synthesis skill. It sits between organizational documentation and implementation, and does neither of the jobs on either side of it.

Category: Knowledge Synthesis Status: Experimental Version: 0.1.0
claude-coach.md

Overview

Claude Coach reads organizational documentation, product specs, systems architecture, department notes, decision records, and transforms it into deterministic, department-scoped implementation guidance that a separate builder agent can execute against. It does not generate application code, and it does not make architectural decisions. Its entire job is synthesis: turning a documentation corpus that's grown organically across many conversations into something consistent enough to build from.

Problem

As AI-assisted projects grow, documentation accumulates across many separate conversations and many contributors, human and AI. Individually, each document is fine. Read together, they drift: two departments describe the same component slightly differently, an earlier decision gets contradicted by a later one and nobody notices, and a builder agent asked to implement directly from the raw corpus has to re-resolve those inconsistencies itself, inconsistently, every time it runs.

Philosophy

Claude Coach treats documentation as source material for compilation, not as instructions to follow directly. That distinction matters: a compiler doesn't improvise when it hits ambiguous source, it either resolves it against a fixed rule or refuses to proceed. Claude Coach is meant to behave the same way, favoring a smaller, internally consistent output over a larger one that quietly papers over contradictions in the source documentation.

When to Use It

It is not the right tool for early-stage brainstorming, for writing the documentation itself, or for making product or architecture decisions those stay entirely upstream of it.

Expected Inputs

A documentation corpus organized by department or domain (product, systems, backend, UX, infrastructure, etc.), written in Markdown, accumulated across one or more conversations or contributors.

Expected Outputs

Deterministic, department-scoped implementation guidance files. Where the source documentation contains direct contradictions, Claude Coach surfaces them explicitly rather than silently resolving them in one direction.

Example Workflow

01Department agents (or a human) write and maintain documentation for their own domain.
02Once documentation stabilizes, Claude Coach is invoked against the full corpus.
03It reads across every department's documentation and flags direct contradictions rather than silently picking one.
04It produces deterministic, department-scoped skill files, structured implementation guidance, not code.
05A separate builder agent executes against those compiled skill files.

Installation

$ claude skills add ./claude-coach.md

Limitations

Related Skills