원클릭으로
md-table-fixer
Detect and fix Markdown table alignment issues (MD060) with display-width awareness for CJK characters.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Detect and fix Markdown table alignment issues (MD060) with display-width awareness for CJK characters.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Slide layout library for PPT HTML slides - indexed layout contracts, selection rules, constraints, templates, and page budget guidance.
Detect document domain (14 domains: software/hardware/manufacturing/standards/biotech/business/energy/data_science/automotive/cloud_infrastructure/telecom/iot/medical_devices/security) via keyword matching. Supports multi-domain documents and confidence scoring.
Automated validation, reporting, and fixing for Markdown documents using markdownlint, prettier and md_table_tool.
Persistent memory management for AI agents - 3-tier file-based memory system with mandatory L1 raw logs and optional L2/L3 extraction.
Browser-first news retrieval with paywall-aware stop policy, combining DuckDuckGo Lite discovery and RSS feeds.
Brand-style design system for PPT HTML slides - single source of truth for 6 reusable style profiles, including consulting-style and editorial-briefing styles.
| name | md-table-fixer |
| description | Detect and fix Markdown table alignment issues (MD060) with display-width awareness for CJK characters. |
| metadata | {"version":"1.0.0","author":"markdown-writer-specialist"} |
This skill provides an automated, display-width-aware toolset for detecting and fixing Markdown table alignment issues (MD060). It handles CJK characters correctly and creates .bak files for any modified documents.
| Command | Purpose | Exit Codes |
|---|---|---|
detect | Detect misaligned tables | 0: no issues, 1: issues found, 2: error |
fix | Fix misaligned tables | 0: fixed/none, 1: some failed, 2: error |
# Detect misaligned tables in a file or directory
python3 skills/md-table-fixer/scripts/md_table_tool.py detect <path>
# Fix misaligned tables (creates .bak backups)
python3 skills/md-table-fixer/scripts/md_table_tool.py fix <path>
detect first to report problems and decide whether to fixfix, run npx markdownlint-cli <file> to validate other markdown rules**/*.md)Example agent flow:
# Step 1: Detect issues
python3 skills/md-table-fixer/scripts/md_table_tool.py detect knowledge/templates/
# Step 2: Fix if issues found
python3 skills/md-table-fixer/scripts/md_table_tool.py fix knowledge/templates/
# Step 3: Validate with markdownlint
npx markdownlint-cli knowledge/templates/
.bak backup for files that were modified| Name | Description | Status |
|------|----|----------|
| Item 1 | Short | Active |
| Item 2 | A much longer description here | Pending |
| Name | Description | Status |
|--------|------------------------------|---------|
| Item 1 | Short | Active |
| Item 2 | A much longer description here | Pending |
status: success
file_path: docs/example.md
tables_fixed: 2
actions_taken:
- "md_table_tool.py fix"
status: partial
file_path: docs/example.md
tables_fixed: 1
failed_tables:
- "table at line 45"
actions_taken:
- "md_table_tool.py fix"
status: error
error_message: "Path not found: /invalid/path"
hint: "Check the file or directory path exists"
This skill is primarily used by:
markdown-writer-specialist — to fix table alignment in generated documentsmarkdown-formatter — as part of the comprehensive markdown formatting workflow