dotfiles/claude-code/skills/md-style/SKILL.md
Writing style when writing readme documentation. Always use when creating or updating README.md files.
npx skillsauth add jimweller/dotfiles md-styleInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
STARTER_CHARACTER = 📝
Write concise, direct README files for experienced engineers.
# Component Name
One-line description of what it does.
## Usage
\`\`\`bash
./install.sh
./uninstall.sh
\`\`\`
## Architecture
| Component | Description |
|-----------|-------------|
| Item 1 | What it is |
| Item 2 | What it is |
## Configuration
Key variables and their purpose. Use tables for structured data.
## Testing
\`\`\`bash
# Essential verification commands only
make test
\`\`\`
## File Structure
\`\`\`text
component/
├── install.sh
├── uninstall.sh
└── manifests/
\`\`\`
Before (verbose):
## Purpose
This module provides comprehensive networking infrastructure including
Virtual Networks, Subnets, Network Security Groups, and NAT Gateways.
The architecture follows Azure best practices for hub-spoke topology...
### Why We Made These Decisions
After evaluating several approaches, we decided to use service endpoints
because they provide a simpler implementation path without requiring...
After (concise):
# Networking Module
Creates VNet, subnets, NSG, NAT Gateway, and service endpoints.
## Architecture
\`\`\`text
VNet (10.x.0.0/22)
├── Main Subnet (10.x.0.0/24) - AKS nodes
└── AGW Subnet (10.x.1.0/24) - Application Gateway
\`\`\`
testing
Search saved session transcripts for past decisions, actions, errors, and context that has left the current conversation window.
data-ai
Review a PRD for defects via Claude opus subagent.
development
Markdown authoring guidelines for formatting, code blocks, and structure. Use when writing or editing markdown files.
development
--- name: md-style description: README style guide for concise, direct documentation. Use when writing or editing README files. ß--- <!-- markdownlint-disable-file MD041 --> # README Style Guide Write concise, direct README files for experienced engineers. ## Principles - **No fluff** - Skip tables of contents, verbose explanations, development history - **No roadmaps** - Document current state only, not plans or decisions. Readme is an engineering specification. Not a project plan or chan