By kwosei
Generate and maintain colocated documentation that explains what a codebase does, using plain English and mermaid diagrams
semantic-git generates human-readable documentation that explains what a codebase does, so someone can understand the system without reading code.
It creates *.semantic.md files colocated next to the source code they describe — visible right in your IDE file tree. These files use plain English, mermaid diagrams, and structured explanations to make any codebase approachable.
notes.semantic.md appears right beside notes.tsOVERVIEW.semantic.md, ARCHITECTURE.semantic.md) with system diagrams| Skill | Description |
|---|---|
| semantic-git | Generate and maintain colocated codebase documentation |
Register this repository as a plugin marketplace:
/plugin marketplace add <repo-url>
Then install the skill:
/plugin install semantic-git-skills@semantic-git-skills
Or install directly by adding the skill folder to your Claude Code configuration.
Once installed, use any of these to trigger the skill:
/semantic-git — full generation for the current repo"document this repo" — Claude will use the skill automatically"explain this codebase" — triggers on documentation-related requestsAfter running on a repo, you'll see files like:
your-repo/
├── OVERVIEW.semantic.md # What the project does, reading guide
├── ARCHITECTURE.semantic.md # System diagrams, design decisions
├── .semantic-manifest.json # Tracks doc coverage and freshness
├── src/
│ ├── auth/
│ │ └── .semantic.md # Explains the auth module
│ ├── lib/
│ │ ├── processor.ts
│ │ ├── processor.semantic.md # Explains processor.ts
│ │ └── utils/
│ │ └── .semantic.md # Explains the utils directory
Each file contains:
.gitignore, identifies logical modules.semantic.md, complex individual files get <name>.semantic.md.semantic-manifest.json with commit SHAsSee the template for a minimal skill starting point, or read the Agent Skills specification.
Apache 2.0 — see LICENSE.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub kwosei/semantic-git --plugin semantic-git-skillsLocal wiki-style document generator for Claude Code
Documentation generation with API docs, architecture diagrams, and tutorials
llmdoc Claude Code plugin with init, update modes, temporary investigation cache, and use
Use this agent when you need to analyze a service or codebase component and create comprehensive documentation in CLAUDE.md files. This agent should be invoked after implementing new services, major refactoring, or when documentation needs updating to reflect the current codebase structure. Examples: <example>Context: The user has just implemented a new authentication service and wants to document it properly. user: 'I just finished implementing the auth service, can you document how it works?' assistant: 'I'll use the codebase-documenter agent to analyze the authentication service and create detailed documentation in CLAUDE.md' <commentary>Since the user has completed a service implementation and needs documentation, use the Task tool to launch the codebase-documenter agent to create comprehensive CLAUDE.md documentation.</commentary></example> <example>Context: The user wants to ensure a newly added API module is properly documented for the team. user: 'We need documentation for the new payment processing API I just added' assistant: 'Let me use the codebase-documenter agent to analyze the payment processing API and create proper documentation' <commentary>The user needs documentation for a new API module, so use the codebase-documenter agent to create CLAUDE.md files with setup instructions and architectural notes.</commentary></example>
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Build and maintain an LLM-curated personal knowledge base in your project — Andrej Karpathy's LLM Wiki pattern, designed to scale to thousands of pages without becoming a context bottleneck. Now with an optional compiled graph layer for typed, provenance-backed relationships.