documentation-templates

Provides templates and structure guidelines for README, API docs, code comments, and changelogs.

Updated Mar 17, 2026
One-click install
npx skills add https://github.com/beliciobcardoso/mcp-postgres --skill documentation-templates-beliciobcardoso
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: documentation-templates
Source: https://github.com/beliciobcardoso/mcp-postgres/tree/main/.agent/skills/documentation-templates
Command: npx skills add https://github.com/beliciobcardoso/mcp-postgres --skill documentation-templates-beliciobcardoso

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Writing consistent, well-structured documentation is time-consuming, and teams often produce inconsistent READMEs, API references, and changelogs that confuse users and AI agents alike. ## Core Features & Use Cases - README Templates: Provides an essential section checklist and a ready-to-use README skeleton with quick start, features, and configuration tables. - API & Code Documentation: Offers per-endpoint API documentation templates and JSDoc/TSDoc comment guidelines with rules on when to comment. - Governance Docs: Includes Keep a Changelog format, Architecture Decision Record (ADR) templates, and AI-friendly documentation patterns like llms.txt for RAG indexing. - Use Case: When starting a new open-source project, use this Skill to generate a complete README, set up a changelog, and document your API endpoints following proven structural conventions. ## Quick Start Ask the AI to generate a README for your project following the documentation templates structure.

Frequently Asked Questions about documentation-templates

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I write a good README for my project?▼

A good README starts with a title and one-line description, followed by a quick start section runnable in under five minutes. Then add features, a configuration table, links to detailed docs, contributing guidelines, and license information.

What sections should API documentation include?▼

Each endpoint should document the HTTP method and path, a parameter table with name, type, required status, and description, plus response codes and a concrete request-response example. Keep each endpoint self-contained for easy reference.

When should I write code comments?▼

Comment the why behind business logic, complex algorithms, non-obvious behavior, and API contracts. Avoid commenting obvious code, every line, or implementation details that are self-explanatory from the code itself.

What is an Architecture Decision Record?▼

An ADR is a short document capturing a significant technical decision with four parts: status, context explaining why the decision was needed, the decision itself, and consequences including trade-offs. It preserves reasoning for future maintainers.

How do I make documentation AI-friendly for RAG?▼

Use a clear H1-H3 heading hierarchy, JSON or YAML examples for data structures, Mermaid diagrams for flows, and self-contained sections. Adding an llms.txt file listing core files and key concepts helps AI crawlers and agents index your project.