一键导入
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) |"
)