doc-templates

doc-templates is a skill for Claude Code, Codex from LuuOW/meridian-mcp. It costs 37 tokens per session (2,033 once invoked), scanned A, original, MIT.

Copy-ready documentation templates for architecture decisions, operational runbooks, incident post-mortems, pull-request descriptions, and changelog entries. An ADR is a short record of an important technical decision.

In plain words
What is it for?
Use it to create an ADR, describe how to respond to an outage, write a post-mortem, prepare a pull-request description, or format a changelog entry.
Why use it?
It avoids rewriting the same document structure and helps teams record decisions, incidents, and changes consistently.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create an ADR, describe how to respond to an outage, write a post-mortem, prepare a pull-request description, or format a changelog entry.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luuow/meridian-mcp/doc-templates
Install

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.

Any agent
npx skills add LuuOW/meridian-mcp --skill doc-templates
Clone the repo
git clone --depth 1 https://github.com/LuuOW/meridian-mcp

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for doc-templates

README.md
[![agentmods](https://agentmods.dev/badge/skills/luuow/meridian-mcp/doc-templates/github.svg)](https://agentmods.dev/skills/luuow/meridian-mcp/doc-templates)
Your own site
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/doc-templates"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/doc-templates/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.

agentmods 80×15 button for doc-templates

Your own site · 80×15
<a href="https://agentmods.dev/skills/luuow/meridian-mcp/doc-templates"><img src="https://agentmods.dev/badge/skills/luuow/meridian-mcp/doc-templates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,033 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.02033
Opus 5 $0.00018 $0.01017
Sonnet 5 $0.00007 $0.00407
Haiku 4.5 $0.00004 $0.00203

Measured 9d ago against content hash 8a285dc7f855, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

doc-templates 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 9d 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.

1. Check service health: `curl -s https://api.acme.io/health | jq`
skills/doc-templates/SKILL.md · 322 lines

How it starts

The opening of the file, as written. The whole thing — 322 lines — stays where its author put it; the contents beside it link to each section on GitHub.

doc-templates

Copy-paste fragments for recurring documentation structures. Each template is self-contained and opinionated. Pick the block you need; don't combine templates for the same page.

ADR (Architecture Decision Record)

# ADR-{NNN}: {Short imperative title}

**Date:** YYYY-MM-DD  
**Status:** Proposed | Accepted | Deprecated | Superseded by ADR-{NNN}  
**Deciders:** @handle1, @handle2  

## Context

What is the situation that forces this decision? What constraints exist?
(1–3 paragraphs. No solution here — only problem framing.)

## Decision

We will {concrete action verb} {what}.

## Consequences

**Positive:**
- …

**Negative / trade-offs:**
- …

**Neutral:**
- …

## Alternatives Considered

| Option | Why rejected |
|--------|-------------|
| … | … |

Runbook Block

## Runbook: {System Name} — {Failure Mode}

**Severity:** SEV-1 | SEV-2 | SEV-3  
**Owner:** @team-name  
**Last tested:** YYYY-MM-DD  

### Symptoms
- Alert name: `{AlertName}` in Grafana / PagerDuty
- Observable user impact: …

### Immediate Triage (< 5 min)

1. Check service health: `curl -s https://api.acme.io/health | jq`
2. Check recent deploys: `gh run list --workflow deploy.yml --limit 5`
3. Tail logs: `kubectl logs -n production -l app=acme-api --tail=200`

### Remediation

#### Option A: Rollback last deploy
```bash
gh workflow run rollback.yml -f version=$(git describe --tags HEAD~1)
Option B: Scale up replicas
kubectl scale deployment acme-api -n production --replicas=6

Escalation

If not resolved in 30 min → page @on-call-lead via PagerDuty policy P_ACME_PROD.

Post-Incident

Open a post-mortem within 48 hours. Link: post-mortem template.


## Post-Mortem Skeleton

```markdown
# Post-Mortem: {Incident Title}

**Date:** YYYY-MM-DD  
**Duration:** HH:MM – HH:MM UTC ({N} hours)  
**Severity:** SEV-{N}  
**Author:** @handle  
**Reviewers:** @handle1, @handle2  

## Summary

One paragraph. What broke, for how long, who was affected, root cause in one sentence.

## Impact

| Metric | Value |
|--------|-------|
| Users affected | … |
| Requests failed | … |
| Revenue impact | … |
| SLA breach | Yes / No |

## Timeline (UTC)

| Time | Event |
|------|-------|
| HH:MM | Alert fired: `{AlertName}` |
| HH:MM | On-call paged |
| HH:MM | Root cause identified |
| HH:MM | Mitigation applied |
| HH:MM | Service fully restored |

## Root Cause

What was the technical root cause? (Not "human error" — trace to the system property that allowed the error.)

## Contributing Factors

- …

## What Went Well

- …

## Action Items

| Action | Owner | Due |
|--------|-------|-----|
| Add alert for X | @handle | YYYY-MM-DD |
| Improve runbook section Y | @handle | YYYY-MM-DD |
| Fix root cause: Z | @handle | YYYY-MM-DD |

## Lessons Learned

…

Read the full file on GitHub · 322 lines

Changes

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.

  1. 9d ago First seen · 322 lines · 37 tokens per session scan A 8a285dc7f855

Subscribe to this mod's changes

doc-templates is a skill published in the GitHub repository LuuOW/meridian-mcp (0 stars, last pushed today), licensed MIT. It adds 37 tokens to every session and 2,033 once invoked, about $0.0002 per session on Opus 5. 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-31.