.claude/skills/fix-markdown-lint/SKILL.md
Fix markdown linting and prettier formatting issues in markdown files
npx skillsauth add multigres/multigres fix-markdown-lintInstall 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.
Fix markdown lint errors and prettier formatting issues so CI passes.
/fix-markdown [file ...]
If no files are specified, auto-detect changed .md files:
git diff --name-only HEAD upstream/main -- '*.md'
Run markdownlint with the repo config to see all errors:
markdownlint-cli2 --config .github/linters/.markdownlint.json <files>
Read each file that has errors before fixing.
Apply fixes for each error type:
MD013 — Line length (max 120 chars, code blocks and tables exempt):
MD040 — Fenced code block language:
text for plain text, CLI output, or pseudo-code diagramsbash, go, json, yaml, sql, markdown) when the content is codeMD060 — Table column style:
| --- | --- | not |---|---|Other rules:
After fixing lint errors, run prettier to normalize formatting:
npx prettier --write <files>
Prettier will align tables, normalize spacing, and fix other formatting.
Re-run markdownlint to confirm all errors are resolved:
markdownlint-cli2 --config .github/linters/.markdownlint.json <files>
If errors remain, fix them and repeat until clean.
.github/linters/.markdownlint.json
.prettierrc)tools
Run unit tests, integration tests, and development tasks for multigres
testing
Manage local multigres cluster components (multipooler, pgctld, multiorch, multigateway) - start/stop services, view logs, connect with psql, test S3 backups locally
data-ai
Generate a PR title and description from the current branch diff against main
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.