skills/skills/ai-tools-doctor
dan 5a7891656a feat: convert all skills to dual-publish pattern
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>
2026-01-09 16:19:09 -08:00
..
.claude-plugin feat: convert all skills to dual-publish pattern 2026-01-09 16:19:09 -08:00
skills feat: convert all skills to dual-publish pattern 2026-01-09 16:19:09 -08:00
README.md feat: add spec-review skill and ai-tools-doctor docs 2025-12-15 00:43:52 -08:00
SKILL.md feat: add spec-review skill and ai-tools-doctor docs 2025-12-15 00:43:52 -08:00

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-doctor CLI (from dotfiles bin/)
  • jq for JSON parsing
  • npm for 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"
    }
  }
}