원클릭으로
documentation-index-maintenance
Maintain and fix inconsistencies in documentation indexes, tables of contents, and structured markdown files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Maintain and fix inconsistencies in documentation indexes, tables of contents, and structured markdown files
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Integrates Caveman templating engine with RTK (Rust Token Killer) for token-optimized output formatting. Provides a wrapper script and patterns for using Caveman templates to compress CLI output.
Optimize Hermes context usage — expand RTK coverage, prune sessions, manage memory, set up auto-prune cron. Use when token usage is high or RTK coverage is low.
Set up SSH authentication for custom Git hosts (non-standard ports, custom domains, VPN-dependent hosts) with verification workflow and troubleshooting for common connectivity issues.
Manages MySQL services via Homebrew with RTK integration for token optimization. Provides easy start/stop/restart/status commands and monitoring capabilities.
Install and configure Syncthing for folder sync between macOS and Android devices. Covers brew install, service setup, web UI automation for folder creation, device ID extraction, and cross-device pairing instructions. Use when user needs to sync folders between Mac and phone/tablet.
Synchronize Zenith Finance ledger and transactions to Google Sheets with automatic updates. Creates/maintains a spreadsheet with Dashboard (summary, charts) and History (full transaction log) sheets.
| name | documentation-index-maintenance |
| description | Maintain and fix inconsistencies in documentation indexes, tables of contents, and structured markdown files |
| type | skill |
| tags | ["documentation","maintenance","productivity","patch"] |
Maintain and fix inconsistencies in documentation indexes, tables of contents, and structured markdown files. Includes locating files, reading content, making targeted patches, and verifying changes.
Use search strategies to find the documentation file:
# Search by filename (exact or partial)
search_files(pattern="index.md", target="files", path="~/Documents/Obsidian")
# Search by content (when filename unknown)
search_files(pattern="Skills Hermes Index", target="content", path="~/Documents/Obsidian")
# Search in specific directories
search_files(pattern="*.md", target="files", path="~/Documents/Obsidian/Notes/Skills Hermes")
Examine the file to understand its structure and identify issues:
read_file(path="/path/to/file.md")
Look for:
For each inconsistency identified, prepare:
Make precise, context-aware replacements:
patch(
path="/path/to/file.md",
mode="replace",
old_string="exact context including the problematic text",
new_string="same context with corrections",
replace_all=false # Usually false for precision
)
Always verify patches were applied correctly:
read_file(path="/path/to/file.md") # Review the changes
# Or for specific verification:
search_files(pattern="corrected text", target="content", path="/path/to/file.md")
Problem: google-calendar-wfo-integration shows category "N/A" but should be "productivity"
Old String (with context):
|| google-calendar-wfo-integration | N/A | [google-calendar-wfo-integration.md](google-calendar-wfo-integration.md) |
New String:
|| google-calendar-wfo-integration | productivity | [google-calendar-wfo-integration.md](google-calendar-wfo-integration.md) |
Patch Command:
patch(
path="~/Documents/Obsidian/Notes/Skills Hermes/index.md",
old_string="|| google-calendar-wfo-integration | N/A | [google-calendar-wfo-integration.md](google-calendar-wfo-integration.md) |",
new_string="|| google-calendar-wfo-integration | productivity | [google-calendar-wfo-integration.md](google-calendar-wfo-integration.md) |"
)