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

Tatu: Open-source security layer for Claude Code blocks secrets and destructive commands
Tatu is an open-source hook system that intercepts Claude Code actions in real time to block leaked secrets, flag PII, and deny destructive commands before execution. Installation is via pip/pipx with 'tatu-hook init' to enable audit mode.

Corey Haines' Marketing Skills Set for AI Agents
A set of 25 marketing skills for AI agents has been added to OpenClaw, covering conversion optimization, copywriting, analytics, and growth engineering. The conversion optimization skill is noted as particularly effective in multi-agent setups.

Simplifying OpenClaw Hosting: BestClaw Keeps SSH and User-Friendly Functionality
BestClaw emerges as a straightforward solution for OpenClaw hosting, balancing ease of use with crucial SSH access, as discussed on r/openclaw.

Open-source Claude skill for management consulting frameworks and case studies
A free, MIT-licensed Claude skill provides structured reference material for management consulting work, including frameworks, industry context, and case studies. The project consists of 80+ markdown files organized by domain and seeks contributors to expand coverage.