Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/georgekhananaev/claude-skills-vaultnpx agentmods add commands/georgekhananaev/claude-skills-vault/doc-generateWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/doc-generate)<a href="https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/doc-generate"><img src="https://agentmods.dev/badge/commands/georgekhananaev/claude-skills-vault/doc-generate/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/georgekhananaev/claude-skills-vault/doc-generate"><img src="https://agentmods.dev/badge/commands/georgekhananaev/claude-skills-vault/doc-generate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.05304 |
| Opus 5 | $0.00000 | $0.02652 |
| Sonnet 5 | $0.00000 | $0.01061 |
| Haiku 4.5 | $0.00000 | $0.00530 |
Grade A, and why
doc-generate scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
def generate_code_examples(endpoint, languages=['python', 'javascript', 'curl']): How it starts
The opening of the file, as written. The whole thing — 993 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Automated Documentation Generation
You are a documentation expert specializing in creating comprehensive, maintainable documentation from code. Generate API docs, architecture diagrams, user guides, and technical references using AI-powered analysis and industry best practices.
Context
The user needs automated documentation generation that extracts information from code, creates clear explanations, and maintains consistency across documentation types. Focus on creating living documentation that stays synchronized with code.
Requirements
$ARGUMENTS
Instructions
1. Code Analysis for Documentation
Extract documentation elements from source code:
API Documentation Extraction
import ast
import inspect
from typing import Dict, List, Any
class APIDocExtractor:
def extract_endpoints(self, code_path):
"""
Extract API endpoints and their documentation
"""
endpoints = []
# FastAPI example
fastapi_decorators = ['@app.get', '@app.post', '@app.put', '@app.delete']
with open(code_path, 'r') as f:
tree = ast.parse(f.read())
for node in ast.walk(tree):
if isinstance(node, ast.FunctionDef):
# Check for route decorators
for decorator in node.decorator_list:
if self._is_route_decorator(decorator):
endpoint = {
'method': self._extract_method(decorator),
'path': self._extract_path(decorator),
'function': node.name,
'docstring': ast.get_docstring(node),
'parameters': self._extract_parameters(node),
'returns': self._extract_returns(node),
'examples': self._extract_examples(node)
}
endpoints.append(endpoint)
return endpoints
def _extract_parameters(self, func_node):
"""
Extract function parameters with types
"""
params = []
for arg in func_node.args.args:
param = {
'name': arg.arg,
'type': None,
'required': True,
'description': ''
}
# Extract type annotation
if arg.annotation:
param['type'] = ast.unparse(arg.annotation)
params.append(param)
return params
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 993 lines · 0 tokens per session scan A 72b35fe542b1
doc-generate is a command published in the GitHub repository georgekhananaev/claude-skills-vault (28 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 5,304 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
audit-xls
Audit an Excel workbook — formula errors, hardcoded cells, calculation arc cross-validation.
earnings-preview
Earnings preview presentation — 4-6 slide deck with consensus estimates, historical surprises, forward catalysts.
quick-commit
Quick commit with automatic formatting, linting, and conventional commit message.
build-unity
Build Unity project (WebGL, Desktop, or PSG1).
plan-feature
Plan feature implementation with technical specifications for Solana projects.
doctor
Health check for the dev environment and solana-ai-kit config — read-only, with one exact fix-it command per failure.