소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill markdownlint-compliance명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | markdownlint-compliance |
| description | >- Use when this capability is needed. |
markdownlint checks for config in this order (first match wins):
markdownlint.config in VS Code / Cursor settings.markdownlint.jsonc in the workspace root.markdownlint.json in the workspace root.markdownlint.yaml / .markdownlint.yml in the workspace rootBefore writing markdown, check if a config exists:
ls .markdownlint* 2>/dev/null || echo "no config — using defaults"
If no config exists, all rules are enabled with their default settings.
These are the rules most frequently broken by AI-generated markdown, ordered by frequency:
Fenced code blocks must have a blank line before the opening fence and after the closing fence.
<!-- ❌ BAD -->
Some text:
```bash
echo "hello"
```
More text.
<!-- ✅ GOOD -->
Some text:
```bash
echo "hello"
```
More text.
Lists need a blank line before the first item and after the last item.
<!-- ❌ BAD -->
Some text:
- Item one
- Item two
More text.
<!-- ✅ GOOD -->
Some text:
- Item one
- Item two
More text.
Every fenced code block needs a language identifier after the opening triple backticks.
Common language tags: bash, json, yaml, markdown,
typescript, python, tsx, css, html, sql, nix,
toml, diff, text, plaintext.
Use text or plaintext if no language applies. Use markdown
for markdown examples.
URLs in prose must be wrapped — either as links or angle brackets.
<!-- ❌ BAD -->
See https://example.com for details.
<!-- ✅ GOOD -->
See <https://example.com> for details.
See [the docs](https://example.com) for details.
Table pipes must be consistently styled. Use the "compact" style (single space padding):
<!-- ✅ Compact style (consistent) -->
| Name | Value |
| ---- | ----- |
| foo | bar |
Don't skip heading levels (e.g., ## followed by ####).
<!-- ❌ BAD -->
## Section
#### Subsection
<!-- ✅ GOOD -->
## Section
### Subsection
| Rule | Name | Default | Summary |
|---|---|---|---|
| MD001 | heading-increment | on | Headings increment by one level |
| MD003 | heading-style | atx | Use # style headings |
| MD004 | ul-style | consistent | Consistent list marker |
| MD005 | list-indent | on | Consistent list indentation |
| MD009 | no-trailing-spaces | on | No trailing whitespace |
| MD010 | no-hard-tabs | on | No hard tab characters |
| MD012 | no-multiple-blanks | on | No consecutive blank lines |
| MD013 | line-length | 80 (often off) | Line length limit |
| MD018 | no-missing-space-atx | on | Space after # in headings |
| MD019 | no-multiple-space-atx | on | No multiple spaces after # |
| MD022 | blanks-around-headings | on | Blank lines around headings |
| MD023 | heading-start-left | on | Headings at start of line |
| MD024 | no-duplicate-heading | on | No duplicate heading text |
| MD025 | single-title | on | Only one # (H1) per document |
| MD027 | no-multiple-space-blockquote | on | No multiple spaces after > |
| MD028 | no-blanks-blockquote | on | No blank lines in blockquotes |
| MD029 | ol-prefix | one_or_ordered | Ordered list prefix style |
| MD030 | list-marker-space | on | Spaces after list markers |
| MD031 | blanks-around-fences | on | Blank lines around code blocks |
| MD032 | blanks-around-lists |
markdownlint-cli2 --fix automatically resolves most whitespace
and formatting violations. Always run it before attempting manual
fixes.
# Single file
npx markdownlint-cli2 "path/to/file.md" --fix
# Directory (glob pattern)
npx markdownlint-cli2 "docs/**/*.md" --fix
# Multiple specific files
npx markdownlint-cli2 "README.md" ".cursor/rules/*.mdc" --fix
# Entire workspace (careful — respects .markdownlintignore)
npx markdownlint-cli2 "**/*.md" --fix
| Rule | Description |
|---|---|
| MD009 | Trailing spaces |
| MD010 | Hard tabs |
| MD012 | Multiple consecutive blank lines |
| MD022 | Missing blank lines around headings |
| MD023 | Heading not at start of line |
| MD027 | Multiple spaces after blockquote |
| MD030 | Spaces after list markers |
| MD031 | Missing blank lines around code blocks |
| MD032 | Missing blank lines around lists |
| MD047 | Missing single trailing newline |
| Rule | Description | How to Fix |
|---|---|---|
| MD013 | Line length | Reflow text or disable rule |
| MD034 | Bare URLs | Wrap in <url> or [text](url) |
| MD036 | Emphasis as heading | Replace **text** with ### text |
| MD040 | Missing fence language | Add tag after opening triple fences |
| MD041 | No first-line heading | Add # Title as the first line |
1. Run --fix (~60% of issues resolved automatically)
2. Re-lint (only manual-fix rules should remain)
3. Fix manually (line length, bare URLs, language tags)
4. Run ReadLints (should be clean)
# Step 1: Auto-fix
npx markdownlint-cli2 ".cursor/rules/*.mdc" --fix
# Step 2: See what's left
npx markdownlint-cli2 ".cursor/rules/*.mdc"
# Output: only MD013, MD040, MD036 remain
# Step 3: Fix those manually using StrReplace or editor
Create .markdownlint-cli2.jsonc in the workspace root to
customize:
{
// Disable rules that don't apply to your project
"config": {
"MD013": false,
"MD033": false
},
// Ignore certain paths
"ignores": ["node_modules/**", "**/content/blog/**"]
}
.markdownlint* confignpx markdownlint-cli2 "file.md" --fixReadLints on the file for remaining violations--fix couldn't resolveSource: cdbattags/ai — distributed by TomeVault.
| on |
| Blank lines around lists |
| MD033 | no-inline-html | off | No inline HTML (often disabled) |
| MD034 | no-bare-urls | on | No bare URLs |
| MD035 | hr-style | consistent | Consistent horizontal rule |
| MD036 | no-emphasis-as-heading | on | Don't use emphasis as headings |
| MD037 | no-space-in-emphasis | on | No spaces in emphasis markers |
| MD038 | no-space-in-code | on | No spaces inside code spans |
| MD039 | no-space-in-links | on | No spaces inside link text |
| MD040 | fenced-code-language | on | Code blocks need language tag |
| MD041 | first-line-heading | on | First line should be a heading |
| MD042 | no-empty-links | on | No empty link destinations |
| MD045 | no-alt-text | on | Images need alt text |
| MD046 | code-block-style | fenced | Use fenced code blocks |
| MD047 | single-trailing-newline | on | File ends with single newline |
| MD048 | code-fence-style | backtick | Use backticks not tildes |
| MD049 | emphasis-style | asterisk | Use * not _ for emphasis |
| MD050 | strong-style | asterisk | Use ** not __ for strong |