Litprog Skill
Description
Literate programming skill for agent harnesses like Claude Code, OpenCode and Hermes Agent
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
Literate Programming Skill for Claude Code
A Claude Code skill that transforms codebases into literate programs. These are documents written for human comprehension that also generate the original source code.
What is Literate Programming?
Literate programming was invented by **Donald Knuth** in 1984. Knuth is the author of *The Art of Computer Programming*, creator of TeX, and winner of the 1974 Turing Award. He introduced literate programming as a paradigm where programs are written as essays for human readers, with code embedded in a narrative.
A literate program produces two outputs:
- Weave: Produce a readable document (PDF, HTML) with prose, diagrams, and syntax-highlighted code.
- Tangle: Extract runnable source files from the document.
The key insight: present code in *psychological order*. That is, the order that makes it easiest to understand, not the order the compiler needs.
What This Skill Does
- Installs as a Claude Code skill (via
SKILL.md) - Gives Claude the ability to analyze a codebase and produce a
.lit.mdfile - The
.lit.mdfile weaves prose, Mermaid diagrams, LaTeX math, and syntax-highlighted code into a narrative - Includes a tangler (
scripts/tangle.ts) that extracts source files back from the.lit.md - Includes a reverse-sync engine (
scripts/untangle.ts) that updates the.lit.mdwhen source files are edited directly - Includes a PostToolUse hook (
scripts/hook-reverse-sync.ts) for automatic reverse-sync in Claude Code - Running
/literate-programmingon an existing.lit.mdjust weaves + tangles (idempotent) - Supports PDF generation via Pandoc
Installation
Copy `SKILL.md` into your project's `.claude/skills/` directory:
git clone https://github.com/tlehman/litprog-skill.git
mkdir -p your-project/.claude/skills/
cp litprog-skill/SKILL.md your-project/.claude/skills/literate-programming.md
Claude Code automatically discovers skills from `.claude/skills/` in your project root. After co
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