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