AutoSkillUpdate: A Claude Code Plugin That Detects Outdated Skills

AutoSkillUpdate is a Claude Code plugin built specifically for Claude Code users to detect when their custom skills have become outdated due to codebase changes. The tool addresses the problem where skills written months ago continue teaching Claude old patterns while the actual codebase has evolved with new libraries, different patterns, or updated conventions.
How It Works
When you run /updateskill, the plugin reads your source files, checks dependencies, and pulls the latest library documentation through Context7. It then generates a drift report with specific evidence including file paths and line references.
Examples of what it catches:
- Your skill says "use styled-components for styling" but 47 files in your codebase use Tailwind
- Your backend skill references Firebase Functions v1 patterns but you migrated to v2
- Your team adopted Zustand but the skill doesn't mention it
The plugin can rewrite the skill for you, but only after showing you the diff and getting your confirmation. Nothing gets written without approval.
Development Details
The entire plugin was built using Claude Code. The orchestrator skill, codebase analyzer agent, doc-fetcher agent, and skill-writer were all developed and iterated on inside Claude Code sessions. Claude helped architect the agent workflow, write the drift detection logic, and handle the parallel agent dispatch pattern.
Installation and Usage
Install from GitHub:
claude plugin marketplace add Snowtumb/claude-auto-skill-update
claude plugin install auto-skill-update@claude-auto-skill-update
Or run locally:
claude --plugin-dir /path/to/claude-auto-skill-update
Then run /updateskill in any project that has custom skills.
Additional options:
--dry-runmode to see what's outdated without changing anything--allfor batch updating every skill at once
The plugin is MIT licensed and available on GitHub: https://github.com/Snowtumb/claude-auto-skill-update
📖 Read the full source: r/ClaudeAI
👀 See Also

HomeClaw Plugin Connects Apple HomeKit to OpenClaw
HomeClaw is an OpenClaw plugin that connects Apple Home/HomeKit devices to OpenClaw. It requires an Apple Developer Account to build and run due to Apple HomeKit restrictions for notarized distributions.

SkyClaw: An Open Agent Runtime Written in Rust
SkyClaw is an open-source agent runtime written in Rust with 34 new features across 7 development phases. It includes task checkpointing, SQLite-backed persistent queues, parallel tool execution, and multi-tenancy support.

Benchmark: Gemma4 12B vs Qwen3 8B quantized on 24GB Mac Mini
A developer tested Gemma4 12B against Qwen3:8b-q4_K_M on a 24GB Mac Mini using two prompts. Qwen3 processed prompts 4-5x faster, while Gemma4 generated output slightly faster.

Drop-in OAuth Provider for Personal FastMCP Servers on All Claude Platforms
A developer created a single-file Python OAuth provider that enables personal FastMCP servers to work on Claude.ai web, mobile, and Desktop platforms without requiring external identity services like Auth0 or Google.