| name | documenter-rendergit |
| description | Generate documentation using the RenderGit protocol — HTML with syntax highlighting and CXML session summaries. The Document phase of the Graftline.
|
| version | 0.1.0 |
| author | Jero (LATTICE / MARPA Design Studios) |
| triggers | ["render the docs","generate documentation","rendergit","create session docs","/render"] |
| tools | ["Bash","Read","Write","Edit","Glob","Grep"] |
Documenter RenderGit
USE WHEN the user wants to generate documentation, render session changes, create HTML/CXML output, or run the Document phase of the Graftline.
What It Does
Implements the RenderGit documentation protocol:
- Diff Collection — Gather git changes since last render or specified commit range
- HTML Generation — Create navigable HTML with syntax highlighting, file tree, change summaries
- CXML Generation — Create structured XML with
<session> elements for agent consumption
- SKILL.md Creation — Generate SKILL.md files for new skills discovered during the build
- Index Update — Update
docs/graftery_index.md with new documentation entries
Usage
/render both
/render html backend/
/render cxml --since HEAD~5
Output Formats
| Format | File | Purpose |
|---|
| HTML | docs/sessionN-changes.html | Human-readable with navigation |
| CXML | docs/sessionN-changes.cxml | Agent-readable session summary |
CXML Structure
<session id="N" date="YYYY-MM-DD">
<changes>
<file path="..." action="create|modify|delete">
<summary>What changed and why</summary>
</file>
</changes>
<metrics commits="N" files="N" insertions="N" deletions="N" />
</session>
Integration
The Documenter-Reviewer agent uses this skill during the boot sequence to produce the Daily Brief that the PM reads before making decisions.