Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/richardcb/oh-my-gemini/documentationnpx skills add richardcb/oh-my-gemini --skill documentationgit clone --depth 1 https://github.com/richardcb/oh-my-geminiWrote 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/skills/richardcb/oh-my-gemini/documentation)<a href="https://agentmods.dev/skills/richardcb/oh-my-gemini/documentation"><img src="https://agentmods.dev/badge/skills/richardcb/oh-my-gemini/documentation.svg" alt="Measured on agentmods" 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.00043 | $0.01270 |
| Opus 5 | $0.00022 | $0.00635 |
| Sonnet 5 | $0.00009 | $0.00254 |
| Haiku 4.5 | $0.00004 | $0.00127 |
Grade A, and why
documentation scanned grade A with 0 findings 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 6d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 251 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Documentation Skill
Goal
Create comprehensive, practical documentation for newly implemented features. Help users understand what the feature does and help developers maintain and extend it.
Activation Triggers
- User asks to "document", "write docs", or "add documentation"
- After completing feature implementation
- User asks to update README or GEMINI.md
Core Principle
The code is the source of truth. Use PRD and plan for context only—document what was actually built, not what was planned.
Process
1. Understand the Implementation
# Find changed files
git diff --name-only HEAD~10 2>/dev/null
# Get summary of changes
git log --oneline -10 2>/dev/null
# Find the feature's main files
find src -name "*.ts" -newer [plan_file] 2>/dev/null | head -20
2. Identify Documentation Needs
Questions:
- What does a user need to know to use this feature?
- What does a developer need to know to maintain/extend it?
- What patterns or conventions were established?
- Where does this fit in existing documentation?
3. Determine Documentation Locations
Based on feature scope:
Code Comments (Always Required)
Add inline documentation for:
- Complex algorithms or business logic
- Non-obvious implementation decisions
- Public APIs, functions, or classes
- Important type definitions
README Files (For Significant Changes)
Update if the feature:
- Changes how to run or deploy
- Adds new dependencies
- Changes architecture significantly
- Adds major user-facing capabilities
Developer Guides (For New Patterns)
Create if the feature:
- Introduces new patterns to reuse
- Implements a new system component
- Requires specific knowledge to maintain
- Establishes conventions for others
GEMINI.md (For AI Context)
Update if the feature:
- Introduces new commands
- Adds new directories
- Establishes new patterns
- Changes tech stack
Documentation Standards
Code Comments
Use JSDoc format for TypeScript/JavaScript:
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.
- 6d ago First seen · 251 lines · 43 tokens per session scan A 90030f3a1566
documentation is a skill published in the GitHub repository richardcb/oh-my-gemini (16 stars, last pushed 5mo ago), licensed MIT. It adds 43 tokens to every session and 1,270 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
meteocontrol-assistant
Specialized assistant for monitoring and analyzing solar installations via the MeteoControl VCOM API. Use it to troubleshoot production drops, triage alerts, and generate system reports.
troubleshooter
Specialized in system-wide troubleshooting using metrics and logs.
prompt engineering
Use this skill when asked to create, refine, analyze, or optimize prompts for Large Language Models (LLMs). This skill ensures adherence to prompt engineering best practices and enforces a rigorous design workflow.
logs-expert
Expert in writing and optimizing LogsQL queries for VictoriaLogs.
metrics-expert
Expert in MetricsQL and system monitoring with VictoriaMetrics.
intuitive-shape
Shape a raw product or project idea into a bounded decision before planning or implementation. Use when deciding whether an idea deserves a bet, setting an appetite, comparing candidate bets under finite capacity, cutting scope, exposing rabbit holes and no-gos, or choosing BET, RESEARCH, RESHAPE, or PASS. This skill…