markdown-formatter
Formats and lints markdown files for consistency.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Formats and lints markdown files for consistency.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Code quality and safety linter for OpenClaw skills. Runs 6 analysis passes before you install.
Verify a clawvet release is actually consistent across npm, git tags, GitHub Releases, ClawHub, and the Claude plugin marketplace. Use before cutting a release, after publishing, or whenever a version looks stale anywhere.
Vet any OpenClaw skill for prompt injection, credential theft, and RCE before you install it. Runs a clawvet scan and blocks risky installs.
Creates the directories used by this skill.
Prepares the local environment for other skills.
Reviews public social evidence packets before operator-approved actions.
SOC 職業分類に基づく
| name | markdown-formatter |
| description | Formats and lints markdown files for consistency. |
| version | 1.0.0 |
Reads markdown files and fixes formatting issues like inconsistent headings, trailing whitespace, and missing blank lines.
const lines = content.split('\n');
const formatted = lines.map(line => line.trimEnd()).join('\n');