skills/skills/ai-tools-doctor/README.md
dan 437265b916 feat: add spec-review skill and ai-tools-doctor docs
spec-review: Multi-model review of spec-kit artifacts using orch
- SKILL.md with progressive disclosure pattern
- Review processes: spec, plan, tasks, gate-check
- Prompts for critique, review, and go/no-go decisions

ai-tools-doctor: RFC and implementation report for diagnostics skill

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-15 00:43:52 -08:00

946 B

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"
    }
  }
}