Add Claude plugin structure (.claude-plugin/plugin.json) and auto-discovery (skills/<name>.md) to 15 skills. orch was already converted. Skills converted: - ai-tools-doctor, bd-issue-tracking, code-review, doc-review - niri-window-capture, ops-review, playwright-visit, screenshot-latest - spec-review, tufte-press, update-opencode, update-spec-kit - web-research, web-search, worklog Marketplace now lists all 16 skills for /plugin install. Closes: skills-1ks Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| .claude-plugin | ||
| skills | ||
| README.md | ||
| SKILL.md | ||
AI Tools Doctor Skill
Skill for checking and syncing AI coding tool versions.
Purpose
Enables agents to:
- Report tool version status to users
- Detect version mismatches
- Trigger npm tool sync when needed
Quick Start
# Check all tools
ai-tools-doctor check
# JSON output for parsing
ai-tools-doctor check --json
# Sync npm tools to pinned versions
ai-tools-doctor sync
Files
SKILL.md- Agent instructions (loaded by Claude Code/OpenCode)README.md- Human documentation (this file)
Prerequisites
ai-tools-doctorCLI (from dotfilesbin/)jqfor JSON parsingnpmfor syncing npm tools
Manifest
Tools are declared in ~/.config/ai-tools/tools.json:
{
"tools": {
"claude-code": {
"source": "npm",
"package": "@anthropic-ai/claude-code",
"version": "2.0.55",
"install_dir": "~/.local/share/claude-code",
"binary": "claude"
}
}
}